home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1999 January / PC Plus Super CD No55a (PCP-147A-1-99) (Disc 1) (1998).iso / full / cbuilder / SAMS / SAMPLES / CHAP11 / DEBUGTST.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-12  |  594 b   |  17 lines

  1. //---------------------------------------------------------------------------
  2. #include <vcl\vcl.h>
  3. #pragma hdrstop
  4. //---------------------------------------------------------------------------
  5. USERES("DebugTst.res");
  6. USEFORM("DbgMain.cpp", MainForm);
  7. //---------------------------------------------------------------------
  8. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  9. {
  10.   Application->Initialize();
  11.   Application->CreateForm(__classid(TMainForm), &MainForm);
  12.   Application->Run();
  13.  
  14.   return 0;
  15. }
  16. //---------------------------------------------------------------------------
  17.